/* ====== 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;
}

.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;
    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;
    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;
    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;
    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);
    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-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.layanan-card-link:hover {
    transform: translateY(-5px);
}

.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;
    cursor: pointer;
    position: relative; /* Tambahkan ini untuk efek pseudo-element */
}

.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;
}

/* Tambahkan efek subtle untuk menunjukkan card bisa diklik */
.layanan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2E5A7E, #4A90E2);
    border-radius: 15px 15px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.layanan-card:hover::before {
    transform: scaleX(1);
}

.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;
}

/* ====== TESTIMONI SECTION ====== */
.testimoni {
    background-color: #FFFFFF;
    padding: 80px 0;
}

.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimoni-card {
    background-color: #F8F9FA;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #C8D9E4;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    aspect-ratio: 1/1; /* Membuat kotak persegi */
}

.testimoni-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimoni-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Memastikan gambar memenuhi container tanpa distorsi */
    transition: transform 0.5s ease;
}

.testimoni-card:hover .testimoni-avatar {
    transform: scale(1.05);
}

/* Animasi untuk testimoni card */
.testimoni-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimoni-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== KONTAK (Versi Gelap dengan Teks Putih) ====== */
.kontak {
    background: linear-gradient(135deg, #2E5A7E 0%, #4A90E2 100%); /* Gradasi biru navy ke biru azure */
    padding: 100px 0;
    position: relative;
    color: #FFFFFF; /* Ubah warna teks umum menjadi putih */
}

.kontak::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 1;
}

.kontak .container {
    position: relative;
    z-index: 2;
}

.kontak h2 {
    color: #FFFFFF !important; /* Warna putih untuk heading */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Tambahkan bayangan agar lebih terbaca */
}

.kontak h2::after {
    background-color: #FFFFFF; /* Ubah warna garis bawah menjadi putih */
}

.kontak-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.kontak-card {
    background: rgba(255, 255, 255, 0.15); /* Background semi-transparan */
    border-radius: 20px;
    padding: 40px;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    z-index: 2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.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); }
}

.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;
}

.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 untuk hover link */
}

.hari-libur {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 5px;
    color: rgba(255,255,255,0.85);
}

.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; }

.kontak-visual {
    background: rgba(255, 255, 255, 0.1); /* Background semi-transparan */
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    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(255,255,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, #FFD700 0%, #FFA500 100%); /* Warna kuning keemasan */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.visual-icon i {
    font-size: 2.4rem;
    color: #2E5A7E; /* Warna navy untuk ikon */
}

.kontak-visual h3 {
    font-size: 1.9rem;
    color: #FFFFFF;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.kontak-visual p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.kontak-visual .cta-button {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); /* Warna kuning keemasan */
    color: #2E5A7E; /* Warna navy untuk teks tombol */
    padding: 14px 35px;
    font-size: 1.05rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    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(255, 215, 0, 0.4);
}

.kontak-visual .cta-button i {
    margin-right: 10px;
}

/* ====== KEBIJAKAN PRIVASI ====== */
.kebijakan-privasi {
    background-color: #C8D9E4; /* Mist Blue */
    padding: 80px 0;
}

.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);
}

.privasi-content p {
    text-align: justify;
    text-align-last: left;
    line-height: 1.7;
    margin-bottom: 15px;
}

.privasi-content h3 {
    color: #2B2B2B; /* Charcoal Gray */
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
}

.privasi-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.privasi-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* ====== 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: 168px;
    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;
}

/* ====== FLOATING SOCIAL MEDIA BUTTONS ====== */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.floating-buttons .social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 10px;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.floating-buttons .social-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.floating-buttons .social-button.whatsapp {
    background-color: #25D366;
}

.floating-buttons .social-button.facebook {
    background-color: #1877F2;
}

.floating-buttons .social-button.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.floating-buttons .social-button.twitter {
    background-color: #1DA1F2;
}

.floating-buttons .social-button.tiktok {
    background-color: #000000;
}

.floating-buttons .social-button .tooltip {
    position: absolute;
    right: 60px;
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-size: 14px;
}

.floating-buttons .social-button:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Responsif untuk tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .floating-buttons {
        bottom: 30px;
        right: 30px;
    }
    
    .floating-buttons .social-button {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}

/* Responsif untuk laptop/desktop */
@media (min-width: 1024px) {
    .floating-buttons {
        bottom: 40px;
        right: 40px;
    }
    
    .floating-buttons .social-button {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Animasi pulse untuk WhatsApp */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.floating-buttons .social-button.whatsapp {
    animation: pulse 2s infinite;
}

/* Animasi muncul dari bawah */
@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.floating-buttons .social-button {
    animation: slideInUp 0.5s ease forwards;
}

/* Delay animasi untuk setiap tombol */
.floating-buttons .social-button:nth-child(1) { animation-delay: 0.1s; } /* WhatsApp */
.floating-buttons .social-button:nth-child(2) { animation-delay: 0.2s; } /* Facebook */
.floating-buttons .social-button:nth-child(3) { animation-delay: 0.3s; } /* Instagram */
.floating-buttons .social-button:nth-child(4) { animation-delay: 0.4s; } /* Twitter */
.floating-buttons .social-button:nth-child(5) { animation-delay: 0.5s; } /* TikTok */

/* ====== RESPONSIVE STYLES ====== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    /* Hero Section */
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image {
        order: 1; /* Gambar tetap di atas di tablet */
        margin-bottom: 40px;
    }
    
    .hero-text {
        order: 2; /* Teks di bawah di tablet */
        padding-left: 0;
    }
    
    .hero p {
        max-width: 100%;
        margin: 0 auto 30px;
    }
    
    /* Tentang Kami */
    .tentang-content {
        flex-direction: column;
    }
    
    .tentang-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .visi-misi {
        grid-template-columns: 1fr;
    }
    
    /* Kontak Section */
    .kontak {
        background: linear-gradient(135deg, #2E5A7E 0%, #4A90E2 100%); /* Gradasi biru navy ke biru azure */
        color: #FFFFFF; /* Ubah warna teks umum menjadi putih */
    }
    
    .kontak h2 {
        color: #FFFFFF !important; /* Warna putih untuk heading */
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Tambahkan bayangan agar lebih terbaca */
    }
    
    .kontak h2::after {
        background-color: #FFFFFF; /* Ubah warna garis bawah menjadi putih */
    }
    
    .kontak-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .kontak-card {
        padding: 30px;
        background: rgba(255, 255, 255, 0.15); /* Background semi-transparan */
        color: #ffffff;
    }
    
    .kontak-header h3 {
        font-size: 1.8rem;
        color: #ffffff;
        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;
    }
    
    .kontak-item {
        padding: 15px;
        background: rgba(255, 255, 255, 0.2);
    }
    
    .kontak-icon {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.25);
    }
    
    .kontak-icon i {
        font-size: 1.3rem;
        color: #ffffff;
    }
    
    .kontak-info h4 {
        font-size: 1.2rem;
        color: #ffffff;
    }
    
    .kontak-info a,
    .kontak-info p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.95rem;
    }
    
    .kontak-info a:hover {
        color: #FFD43B; /* Kuning untuk hover link */
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.25);
        color: #ffffff;
        font-size: 1.2rem;
    }
    
    .social-link:hover {
        background: #ffffff;
    }
    
    .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-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); /* Warna kuning keemasan */
    }
    
    .visual-icon i {
        font-size: 2rem;
        color: #2E5A7E; /* Warna navy untuk ikon */
    }
    
    .kontak-visual h3 {
        font-size: 1.8rem;
        color: #FFFFFF;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    
    .kontak-visual p {
        font-size: 1.05rem;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .kontak-visual .cta-button {
        background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); /* Warna kuning keemasan */
        color: #2E5A7E; /* Warna navy untuk teks tombol */
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile (480px - 767px) */
@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    h2::after {
        width: 60px;
    }
    
    /* Header */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #2E5A7E; /* Deep Navy Blue */
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding-top: 50px;
    }
    
    .nav-menu ul li {
        margin: 0 0 30px 0;
    }
    
    .nav-menu ul li a {
        color: #FFFFFF;
        font-size: 1.2rem;
    }
    
    .nav-menu ul li a::after {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hero Section */
    .hero {
        padding: 120px 0 80px;
        background: linear-gradient(135deg, #2E5A7E 0%, #4A90E2 70%, #A0BFCD 100%);
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .hero-image img {
        max-width: 100%;
    }
    
    /* Paket Layanan */
    .layanan-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .layanan-card {
        padding: 20px;
    }
    
    .promo-card {
        padding: 30px 20px;
    }
    
    .promo-card h3 {
        font-size: 1.5rem;
    }
    
    .harga-promo {
        font-size: 2rem;
    }
    
    .harga-normal {
        font-size: 1.2rem;
    }
    
    /* Cara Kerja */
    .timeline::before {
        left: 20px;
        background-color: #C8D9E4; /* Mist Blue */
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
        margin-left: 0;
    }
    
    .timeline-item:nth-child(odd) {
        align-self: flex-start;
        padding-left: 60px;
        padding-right: 0;
        margin-left: 0;
    }
    
    .timeline-item .icon {
        left: 0;
        right: auto;
        background-color: #2E5A7E; /* Deep Navy Blue */
    }
    
    .timeline-item:nth-child(odd) .icon {
        left: 0;
        right: auto;
    }
    
    /* Tentang Kami */
    .tentang-content {
        gap: 30px;
    }
    
    /* Testimoni */
    .testimoni-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimoni-card {
        padding: 20px;
    }
    
    /* Kontak Section */
    .kontak {
        padding: 60px 0;
        background: linear-gradient(135deg, #2E5A7E 0%, #4A90E2 100%); /* Gradasi biru navy ke biru azure */
        color: #FFFFFF; /* Ubah warna teks umum menjadi putih */
    }
    
    .kontak h2 {
        font-size: 1.8rem;
        color: #FFFFFF !important; /* Warna putih untuk heading */
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Tambahkan bayangan agar lebih terbaca */
    }
    
    .kontak h2::after {
        background-color: #FFFFFF; /* Ubah warna garis bawah menjadi putih */
    }
    
    .kontak-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .kontak-card {
        padding: 25px 20px;
        background: rgba(255, 255, 255, 0.15); /* Background semi-transparan */
        color: #ffffff;
    }
    
    .kontak-header h3 {
        font-size: 1.5rem;
        color: #ffffff;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    }
    
    .kontak-header p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.95);
    }
    
    .kontak-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        background: rgba(255, 255, 255, 0.2);
    }
    
    .kontak-icon {
        margin-right: 0;
        margin-bottom: 15px;
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.25);
    }
    
    .kontak-icon i {
        font-size: 1.2rem;
        color: #ffffff;
    }
    
    .kontak-info h4 {
        font-size: 1.1rem;
        color: #ffffff;
    }
    
    .kontak-info a,
    .kontak-info p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.95rem;
    }
    
    .kontak-info a:hover {
        color: #FFD43B; /* Kuning untuk hover link */
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.25);
        color: #ffffff;
        font-size: 1.2rem;
    }
    
    .social-link:hover {
        background: #ffffff;
    }
    
    .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-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); /* Warna kuning keemasan */
        margin-bottom: 20px;
    }
    
    .visual-icon i {
        font-size: 1.8rem;
        color: #2E5A7E; /* Warna navy untuk ikon */
    }
    
    .kontak-visual h3 {
        font-size: 1.5rem;
        color: #FFFFFF;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    
    .kontak-visual p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .kontak-visual .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
        background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); /* Warna kuning keemasan */
        color: #2E5A7E; /* Warna navy untuk teks tombol */
    }
    
    /* Kebijakan Privasi */
    .privasi-content {
        padding: 30px 20px;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links,
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Scroll to Top */
    .scroll-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
        background: linear-gradient(135deg, #2E5A7E 0%, #4A90E2 60%, #A0BFCD 100%);
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .hero .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    /* Paket Layanan */
    .layanan-card {
        padding: 15px;
    }
    
    .layanan-card .icon {
        font-size: 2.5rem;
    }
    
    .promo-card h3 {
        font-size: 1.3rem;
    }
    
    .harga-promo {
        font-size: 1.8rem;
    }
    
    .harga-normal {
        font-size: 1rem;
    }
    
    /* Cara Kerja */
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-item:nth-child(odd) {
        padding-left: 50px;
    }
    
    .timeline-item .icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .timeline-item:nth-child(odd) .icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    /* Tentang Kami */
    .visi, .misi {
        padding: 20px;
    }
    
    /* Testimoni */
    .testimoni-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .testimoni-card {
        padding: 15px;
    }
    
    /* Kontak Section */
    .kontak {
        background: linear-gradient(135deg, #2E5A7E 0%, #4A90E2 100%); /* Gradasi biru navy ke biru azure */
        color: #FFFFFF; /* Ubah warna teks umum menjadi putih */
    }
    
    .kontak h2 {
        color: #FFFFFF !important; /* Warna putih untuk heading */
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Tambahkan bayangan agar lebih terbaca */
    }
    
    .kontak h2::after {
        background-color: #FFFFFF; /* Ubah warna garis bawah menjadi putih */
    }
    
    .kontak-wrapper {
        gap: 20px;
    }
    
    .kontak-card {
        padding: 20px 15px;
        background: rgba(255, 255, 255, 0.15); /* Background semi-transparan */
        color: #ffffff;
    }
    
    .kontak-header h3 {
        font-size: 1.3rem;
        color: #ffffff;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    }
    
    .kontak-header p {
        color: rgba(255, 255, 255, 0.95);
        font-size: 1rem;
    }
    
    .kontak-item {
        padding: 12px;
        margin-bottom: 20px;
        background: rgba(255, 255, 255, 0.2);
    }
    
    .kontak-icon {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.25);
    }
    
    .kontak-icon i {
        font-size: 1.2rem;
        color: #ffffff;
    }
    
    .kontak-info h4 {
        font-size: 1.1rem;
        color: #ffffff;
    }
    
    .kontak-info a,
    .kontak-info p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.95rem;
    }
    
    .kontak-info a:hover {
        color: #FFD43B; /* Kuning untuk hover link */
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.25);
        color: #ffffff;
        font-size: 1.1rem;
    }
    
    .social-link:hover {
        background: #ffffff;
    }
    
    .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-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); /* Warna kuning keemasan */
        margin-bottom: 15px;
    }
    
    .visual-icon i {
        font-size: 1.5rem;
        color: #2E5A7E; /* Warna navy untuk ikon */
    }
    
    .kontak-visual h3 {
        font-size: 1.3rem;
        color: #FFFFFF;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    
    .kontak-visual p {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .kontak-visual .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
        background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); /* Warna kuning keemasan */
        color: #2E5A7E; /* Warna navy untuk teks tombol */
    }
    
    /* Kebijakan Privasi */
    .privasi-content {
        padding: 25px 15px;
    }
    
    .privasi-content h3 {
        font-size: 1.1rem;
    }
    
    /* Footer */
    .footer-logo img {
        height: 40px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* ====== SPECIAL ADJUSTMENTS ====== */

/* Adjustments for very tall screens */
@media (min-height: 900px) {
    .hero {
        padding: 200px 0 150px;
    }
    
    section {
        padding: 100px 0;
    }
    
    .kontak {
        padding: 120px 0;
        background: linear-gradient(135deg, #2E5A7E 0%, #4A90E2 100%); /* Gradasi biru navy ke biru azure */
        color: #FFFFFF; /* Ubah warna teks umum menjadi putih */
    }
    
    .kontak h2 {
        color: #FFFFFF !important; /* Warna putih untuk heading */
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Tambahkan bayangan agar lebih terbaca */
    }
    
    .kontak h2::after {
        background-color: #FFFFFF; /* Ubah warna garis bawah menjadi putih */
    }
}

/* Adjustments for landscape orientation on mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 60px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .kontak {
        padding: 50px 0;
        background: linear-gradient(135deg, #2E5A7E 0%, #4A90E2 100%); /* Gradasi biru navy ke biru azure */
        color: #FFFFFF; /* Ubah warna teks umum menjadi putih */
    }
    
    .kontak h2 {
        font-size: 1.8rem;
        color: #FFFFFF !important; /* Warna putih untuk heading */
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Tambahkan bayangan agar lebih terbaca */
    }
    
    .kontak h2::after {
        background-color: #FFFFFF; /* Ubah warna garis bawah menjadi putih */
    }
    
    .kontak-wrapper {
        gap: 20px;
    }
    
    /* Testimoni adjustment for landscape */
    .testimoni-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-image img {
        border-radius: 15px;
    }
    
    .layanan-card {
        border-radius: 15px;
    }
    
    .promo-card {
        border-radius: 15px;
    }
    
    .tentang-image img {
        border-radius: 15px;
    }
    
    .kontak-card {
        border-radius: 20px;
    }
    
    .kontak-visual {
        border-radius: 20px;
    }
    
    .privasi-content {
        border-radius: 15px;
    }
    
    .testimoni-card {
        border-radius: 15px;
    }
}

/* Print styles */
@media print {
    .header,
    .mobile-menu-toggle,
    .hero,
    .cta-button,
    .scroll-top,
    .footer,
    .floating-buttons {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    section {
        padding: 20px 0;
        page-break-inside: avoid;
    }
    
    h2 {
        margin-bottom: 15px;
        font-size: 18pt;
    }
    
    .layanan-grid,
    .timeline,
    .visi-misi,
    .kontak-wrapper,
    .testimoni-grid {
        display: block;
    }
    
    .layanan-card,
    .timeline-item,
    .visi,
    .misi,
    .kontak-card,
    .kontak-visual,
    .testimoni-card {
        margin-bottom: 20px;
        page-break-inside: avoid;
    }
    
    .kontak-card {
        border: 1px solid #2E5A7E;
    }
    
    .kontak-visual {
        border: 1px solid #C8D9E4;
    }
}

/* Low bandwidth mode */
@media (prefers-reduced-data: reduce) {
    .hero::before,
    .kontak::before,
    .kontak-card::before,
    .kontak-visual::before,
    .floating-buttons {
        display: none;
    }
    
    .hero {
        background: #2E5A7E;
    }
    
    .kontak {
        background: #2E5A7E;
        color: #FFFFFF; /* Pastikan teks putih */
    }
    
    .kontak h2 {
        color: #FFFFFF !important; /* Pastikan heading putih */
    }
    
    .kontak h2::after {
        background-color: #FFFFFF; /* Garis bawah putih */
    }
    
    .kontak-card {
        background: #2E5A7E;
        color: #ffffff;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .kontak {
        background: linear-gradient(135deg, #2E5A7E 0%, #4A90E2 100%);
        color: #FFFFFF; /* Pastikan teks putih */
    }
    
    .kontak h2 {
        color: #FFFFFF !important; /* Pastikan heading putih */
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .kontak h2::after {
        background-color: #FFFFFF; /* Garis bawah putih */
    }
    
    .kontak-visual {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .kontak-visual h3 {
        color: #ffffff;
    }
    
    .kontak-visual p {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .testimoni-card {
        background-color: #2d2d2d;
        border-color: #444444;
    }
}

/* Accessibility: Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .kontak-card::before,
    .kontak-visual::before,
    .social-link,
    .kontak-item,
    .kontak-card,
    .kontak-visual .cta-button,
    .testimoni-card,
    .floating-buttons .social-button {
        animation: none;
        transition: none;
    }
}