/* ====== RESET & GLOBAL STYLES ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2B2B2B; /* Charcoal Gray */
    background-color: #FFFFFF;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3 {
    margin-bottom: 20px;
    font-weight: 600;
    color: #2B2B2B; /* Charcoal Gray */
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #2E5A7E; /* Deep Navy Blue */
    border-radius: 2px;
}

p {
    margin-bottom: 15px;
    color: #2B2B2B; /* Charcoal Gray */
}

a {
    text-decoration: none;
    color: #4A90E2; /* Azure Accent */
    transition: color 0.3s ease;
}

a:hover {
    color: #2E5A7E; /* Deep Navy Blue */
}

img {
    max-width: 100%;
    height: auto;
}

/* ====== BUTTONS ====== */
.cta-button {
    display: inline-block;
    background-color: #2E5A7E; /* Deep Navy Blue */
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 90, 126, 0.3);
}

.cta-button:hover {
    background-color: #4A90E2; /* Azure Accent */
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
}

/* ====== HEADER ====== */
.header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-menu ul li {
    margin-left: 30px;
}

.nav-menu ul li a {
    color: #2B2B2B; /* Charcoal Gray */
    font-weight: 500;
    position: relative;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #4A90E2; /* Azure Accent */
    transition: width 0.3s ease;
}

.nav-menu ul li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #2B2B2B; /* Charcoal Gray */
    cursor: pointer;
}

/* ====== HERO SECTION ====== */
.hero {
    background: linear-gradient(135deg, #2E5A7E 0%, #4A90E2 50%, #A0BFCD 100%); /* Gradasi Deep Navy Blue ke Azure Accent ke Soft Blue Gray */
    color: #FFFFFF;
    padding: 150px 0 100px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Bagian ::before yang mengandung 'url' sudah dihapus */

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 50px;
}

.hero-image {
    flex: 1;
    text-align: center;
    order: 1; /* Gambar di kiri */
}

.hero-image img {
    max-width: 90%;
    border-radius: 15px;
    /* Menghapus shadow dan menambahkan efek blend untuk menyatu dengan background */
    box-shadow: none;
    transition: transform 0.5s ease;
    mix-blend-mode: screen;
    opacity: 0.9;
}

.hero-image img:hover {
    transform: scale(1.03);
    opacity: 1;
}

.hero-text {
    flex: 1;
    order: 2; /* Teks di kanan */
    padding-left: 30px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #FFFFFF;
    /* Mengurangi text shadow untuk efek yang lebih halus */
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    /* Mengurangi text shadow untuk efek yang lebih halus */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.hero .cta-button {
    background-color: #FFD700; /* Kuning keemasan untuk kontras */
    color: #2E5A7E; /* Deep Navy Blue untuk teks tombol */
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    /* Mengurangi shadow untuk efek yang lebih halus */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.hero .cta-button:hover {
    background-color: #FFFFFF;
    color: #2E5A7E;
    transform: translateY(-5px);
    /* Mengurangi shadow untuk efek yang lebih halus */
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Efek cahaya dinamis */
.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}


/* ====== PAKET LAYANAN ====== */
.paket-layanan {
    background-color: #C8D9E4; /* Mist Blue */
    padding: 80px 0;
}

.layanan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.layanan-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #C8D9E4; /* Mist Blue */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.layanan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.layanan-card .icon {
    font-size: 3rem;
    color: #2E5A7E; /* Deep Navy Blue */
    margin-bottom: 20px;
}

.layanan-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2B2B2B; /* Charcoal Gray */
}

.layanan-card p {
    color: #2B2B2B; /* Charcoal Gray */
    line-height: 1.6;
}

.promo-card {
    background: linear-gradient(135deg, #2E5A7E 0%, #4A90E2 100%); /* Deep Navy Blue to Azure Accent */
    border-radius: 15px;
    padding: 40px;
    color: #FFFFFF;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.promo-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.harga {
    margin: 20px 0;
}

.harga-promo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-right: 15px;
}

.harga-normal {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #C8D9E4; /* Mist Blue */
}

.promo-card p {
    margin-bottom: 30px;
    color: #FFFFFF;
}

/* ====== CARA KERJA ====== */
.cara-kerja {
    background-color: #FFFFFF;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #C8D9E4; /* Mist Blue */
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    position: relative;
    margin: 50px 0;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-left: 30px;
    padding-right: 0;
    margin-left: 50%;
}

.timeline-item .icon {
    position: absolute;
    top: 0;
    right: -17px;
    width: 40px;
    height: 40px;
    background-color: #2E5A7E; /* Deep Navy Blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    box-shadow: 0 0 0 4px #FFFFFF, 0 0 0 6px #2E5A7E;
    z-index: 1;
}

.timeline-item:nth-child(odd) .icon {
    right: auto;
    left: -17px;
}

.timeline-item .content {
    background-color: #F8F9FA;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.timeline-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2B2B2B; /* Charcoal Gray */
}

/* ====== TENTANG KAMI ====== */
.tentang-kami {
    background-color: #C8D9E4; /* Mist Blue */
}

.tentang-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.tentang-text {
    flex: 1;
}

.tentang-image {
    flex: 1;
}

.tentang-image img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.visi-misi {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.visi, .misi {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.visi h3, .misi h3 {
    color: #2E5A7E; /* Deep Navy Blue */
    margin-bottom: 15px;
}

/* ====== KONTAK (Versi Putih Bersih) ====== */
.kontak {
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%); /* Gradasi putih ke abu muda */
    padding: 100px 0;
    position: relative;
    color: #1E2A35; /* teks gelap agar kontras */
}

/* Mengganti SVG pattern dengan CSS pattern yang lebih kompatibel */
.kontak::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(30,42,53,0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3; /* lebih halus supaya tetap elegan */
    z-index: 1;
}

.kontak .container {
    position: relative;
    z-index: 2;
}

.kontak-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* ====== Kartu Informasi Kontak (Versi Seimbang & Bersih) ====== */
.kontak-card {
    background: linear-gradient(135deg, #4E9FFF 0%, #7ABEFF 100%); /* gradasi biru cerah modern */
    border-radius: 20px;
    padding: 40px;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 64, 128, 0.25);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    z-index: 2; /* Memastikan z-index lebih tinggi dari ::before */
}

.kontak-card:hover {
    transform: translateY(-5px);
}

.kontak-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 70%);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(180deg); }
}

/* ====== Header ====== */
.kontak-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.kontak-header h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.kontak-header p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
}

/* ====== Detail Kontak ====== */
.kontak-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.kontak-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(10px);
}

.kontak-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.kontak-icon i {
    font-size: 1.4rem;
    color: #ffffff;
}

.kontak-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #ffffff;
}

.kontak-info a,
.kontak-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.kontak-info a:hover {
    color: #FFD43B; /* kuning lembut untuk aksen */
}

.hari-libur {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 5px;
    color: rgba(255,255,255,0.85);
}

/* ====== Sosial Media ====== */
.kontak-social {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.kontak-social h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: #ffffff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.social-link.whatsapp:hover { color: #25D366; }
.social-link.instagram:hover { color: #E4405F; }
.social-link.tiktok:hover { color: #000000; }
.social-link.twitter:hover { color: #1DA1F2; }

/* ====== Visual Kontak (Kanan) ====== */
.kontak-visual {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.kontak-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(62,133,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.visual-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.visual-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4E9FFF 0%, #7ABEFF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(0, 64, 128, 0.25);
}

.visual-icon i {
    font-size: 2.4rem;
    color: #ffffff;
}

.kontak-visual h3 {
    font-size: 1.9rem;
    color: #1E2A35;
    margin-bottom: 15px;
}

.kontak-visual p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 25px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.kontak-visual .cta-button {
    background: linear-gradient(135deg, #4E9FFF 0%, #7ABEFF 100%);
    color: #ffffff;
    padding: 14px 35px;
    font-size: 1.05rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 64, 128, 0.25);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.kontak-visual .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 64, 128, 0.35);
}

.kontak-visual .cta-button i {
    margin-right: 10px;
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 992px) {
    .kontak-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .kontak-card {
        padding: 30px;
    }
    
    .kontak-visual {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .kontak {
        padding: 80px 0;
    }
    
    .kontak-header h3 {
        font-size: 1.8rem;
    }
    
    .kontak-item {
        padding: 15px;
    }
    
    .kontak-icon {
        width: 45px;
        height: 45px;
    }
    
    .kontak-icon i {
        font-size: 1.2rem;
    }
    
    .kontak-info h4 {
        font-size: 1.1rem;
    }
    
    .kontak-info a,
    .kontak-info p {
        font-size: 0.9rem;
    }
    
    .visual-icon {
        width: 70px;
        height: 70px;
    }
    
    .visual-icon i {
        font-size: 2rem;
    }
    
    .kontak-visual h3 {
        font-size: 1.7rem;
    }
    
    .kontak-visual p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .kontak {
        padding: 60px 0;
    }
    
    .kontak-card {
        padding: 25px;
    }
    
    .kontak-visual {
        padding: 25px;
    }
    
    .kontak-header h3 {
        font-size: 1.6rem;
    }
    
    .kontak-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .kontak-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}
/* ====== KEBIJAKAN PRIVASI ====== */
.kebijakan-privasi {
    background-color: #C8D9E4; /* Mist Blue */
    padding: 80px 0; /* Menambahkan padding atas dan bawah untuk memberi ruang */
}

.privasi-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* --- Perbaikan Utama: Membuat Teks Rata Kiri-Kanan (Justify) --- */
.privasi-content p {
    text-align: justify;
    text-align-last: left; /* Mencegah baris terakhir paragraf menjadi terlalu renggang */
    line-height: 1.7; /* Menambah jarak antar baris untuk kenyamanan membaca */
    margin-bottom: 15px;
}

/* Memastikan heading tetap rata kiri untuk tampilan yang lebih baik */
.privasi-content h3 {
    color: #2B2B2B; /* Charcoal Gray */
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left; /* Heading sebaiknya tidak di-justify */
}

/* Memastikan daftar (list) tetap rata kiri */
.privasi-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
    text-align: left; /* List juga sebaiknya rata kiri */
}

.privasi-content li {
    margin-bottom: 10px;
    line-height: 1.6; /* Jarak antar baris di list item juga diperbaiki */
}

/* --- Tambahan: Responsif untuk Layar Lebih Kecil --- */
@media (max-width: 768px) {
    .kebijakan-privasi {
        padding: 60px 0;
    }

    .privasi-content {
        padding: 25px; /* Mengurangi padding di layar mobile agar tidak terlalu makan tempat */
    }
}
/* ====== FOOTER ====== */
.footer {
    background-color: #2E5A7E; /* Deep Navy Blue */
    color: #FFFFFF;
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #C8D9E4; /* Mist Blue */
}

.footer-links h3,
.footer-contact h3 {
    color: #A0BFCD; /* Soft Blue Gray */
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #C8D9E4; /* Mist Blue */
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #A0BFCD; /* Soft Blue Gray */
}

.footer-contact p {
    color: #C8D9E4; /* Mist Blue */
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-contact p i {
    margin-right: 10px;
    color: #4A90E2; /* Azure Accent */
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #4A90E2; /* Azure Accent */
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #C8D9E4; /* Mist Blue */
}

/* ====== SCROLL TO TOP BUTTON ====== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #2E5A7E; /* Deep Navy Blue */
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: #4A90E2; /* Azure Accent */
}

/* ====== ANIMATION CLASSES ====== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ====== NOTIFICATION SYSTEM ====== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
}

.notification-content i {
    font-size: 1.5rem;
    margin-right: 15px;
}

.notification-success {
    border-left: 4px solid #28a745;
}

.notification-success .notification-content i {
    color: #28a745;
}

.notification-error {
    border-left: 4px solid #dc3545;
}

.notification-error .notification-content i {
    color: #dc3545;
}

.notification-info {
    border-left: 4px solid #17a2b8;
}

.notification-info .notification-content i {
    color: #17a2b8;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #6c757d;
    cursor: pointer;
    margin-left: 15px;
}

.notification-close:hover {
    color: #2B2B2B;
}

/* ====== LOADING SPINNER ====== */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #FFFFFF;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ====== COPY BUTTON ====== */
.copy-btn {
    background: none;
    border: none;
    color: #4A90E2;
    cursor: pointer;
    margin-left: 10px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.copy-btn:hover {
    color: #2E5A7E;
}

/* ====== FORM STYLES (untuk keperluan masa depan) ====== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2B2B2B;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #C8D9E4;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4A90E2;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #dc3545;
    background-color: #fdf2f2;
}

.field-error {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.field-error::before {
    content: '\f06a';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 5px;
}

button.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

button.loading i {
    margin-right: 8px;
}


