:root {
    --primary-blue: #0F52BA;
    --primary-light: #E6F0FF;
    --accent-green: #2ECC71;
    --text-dark: #333333;
    --text-grey: #666666;
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --border-color: #E5E7EB;
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 25px -5px rgba(0, 0, 0, 0.15);
	
	--primary-color: #0D47A1;
	--accent-color: #B0BEC5;
	--background-color: #FFFFFF;
	--text-color: #212121;
	--light-gray: #F5F5F5;
	--dark-gray: #424242;
	--transition: all 0.3s ease;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	
	/* outline: 1px solid red; */

}

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= HEADER ================= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.8rem 0;

    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid var(--border-color);
    z-index: 1000;

    transition: box-shadow 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-wrapper a {
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.logo span {
    color: var(--text-dark);
}

nav ul {
    display: flex;
    gap: 30px;

    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);

    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 1.5rem;

    background: none;
    border: none;
    cursor: pointer;
}

/* BUTTON */
.btn-login {
    font-weight: 600;
    color: var(--text-dark);
}

.btn-primary,
.btn-primary-outline {
    padding: 10px 24px;
    border-radius: 6px;

    font-weight: 600;
    color: white;

    background-color: var(--primary-blue);
    border: none;
    cursor: pointer;

    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #0a4194;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 82, 186, 0.3);
}

.btn-outline {
    padding: 10px 24px;
    border-radius: 6px;

    font-weight: 600;
    color: var(--primary-blue);

    background: transparent;
    border: 2px solid var(--primary-blue);
    cursor: pointer;

    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

/* ================= HERO ================= */
.hero {
    padding: 140px 0 60px;
    text-align: center;

    background: linear-gradient(
        180deg,
        var(--bg-white) 0%,
        var(--primary-light) 100%
    );
}

.hero h1 {
    margin-bottom: 20px;

    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--primary-blue);
}

.hero p {
    max-width: 700px;
    margin: 0 auto 40px;

    font-size: 1.2rem;
    color: var(--text-grey);
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 15px;

    margin-bottom: 50px;
}

/* ================= SLIDER ================= */
.showcase-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;

    overflow: hidden;

    mask-image: linear-gradient(
        to right,
        transparent,
        black 5%,
        black 95%,
        transparent
    );
}

.slider-track {
    display: flex;
    align-items: center;
    gap: 20px;

    width: max-content;
    animation: scroll 30s linear infinite;
}

.showcase-container:hover .slider-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

.carousel-item {
    flex: 0 0 auto;
    height: 380px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px;

    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-card);

    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
    z-index: 10;
}

.carousel-item img {
    display: block;
    height: 100%;
    width: auto;

    border-radius: 8px;
}

/* ================= PRODUCTS ================= */
.products-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    margin-bottom: 10px;
    font-size: 2.2rem;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    padding: 30px;

    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;

    cursor: pointer;
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-blue);
}

.card-icon {
    margin-bottom: 20px;
    font-size: 2rem;
    color: var(--primary-blue);
}	

.card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.card p {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-grey);
}

.card-link {
    display: flex;
    align-items: center;
    gap: 5px;

    font-weight: 600;
    color: var(--primary-blue);
}

/* ================= FEATURES ================= */
.features-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.feature-text ul li {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 10px;
}

.feature-text ul li i {
    color: var(--accent-green);
}

.feature-img {
    flex: 1;
    height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;

    /* background: #e0e7ff; */
    /* border-radius: 16px; */

    /* font-size: 3rem; */
    /* color: var(--primary-blue); */
	
}

.feature-text,
.feature-img {
    width: 50%;
}

.feature-img img {
    width: 100%;        /* full mengikuti container */
    max-width: 400px;   /* batas maksimal biar ga kegedean */
    height: auto;       /* jaga rasio */
    object-fit: contain;
}

/* ================= FOOTER ================= */
footer {
    padding: 60px 0 20px;
    background: #111827;
    color: #d1d5db;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;

    margin-bottom: 40px;
    padding-bottom: 40px;

    border-bottom: 1px solid #374151;
}

.footer-brand h3,
.footer-col h4 {
    color: white;
}

.footer-brand h3 {
    margin-bottom: 15px;
}

.footer-col h4 {
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
}

/* ================= MODAL ================= */
.modal-overlay {
    position: fixed;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.5);

    opacity: 0;
    visibility: hidden;
    z-index: 2000;

    transition: all 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;

    padding: 40px;
    border-radius: 12px;

    background: white;

    transform: translateY(20px);
    transition: all 0.3s;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;

    font-size: 1.5rem;
    color: var(--text-grey);
    cursor: pointer;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;

    border: 1px solid var(--border-color);
    border-radius: 6px;
}


 /* Portfolio Section */
.portfolio {
	background-color: var(--light-gray);
}

.portfolio-filters {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.filter-btn {
	background-color: white;
	border: 1px solid var(--accent-color);
	color: var(--text-color);
	padding: 8px 20px;
	margin: 0 5px 10px;
	border-radius: 30px;
	cursor: pointer;
	transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
	background-color: var(--primary-color);
	color: white;
	border-color: var(--primary-color);
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
}

.portfolio-item {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	height: 250px;
	cursor: pointer;
	
	 width: 100%;
    overflow: hidden; /* penting: cegah gambar keluar */
}

.portfolio-item img {
	/* width: 100%; */
	/* height: 100%; */
	/* object-fit: cover; */
	/* transition: var(--transition); */
	
	width: 100%;
    height: auto;
    display: block;
}

.portfolio-text {
    margin-top: 12px;
}

.portfolio-text h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.portfolio-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/*
.portfolio-grid a {
    text-decoration: none;
    color: inherit;
}
*/

.portfolio-grid .portfolio-card-wrapper {
    text-decoration: none;
    color: inherit;
    display: block; /* Agar wrapper mengikuti grid */
}

.portfolio-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(13, 71, 161, 0.9), transparent);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.5rem;
	opacity: 1;
	transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
	opacity: 1;
}

.portfolio-item:hover img {
	transform: scale(1.1);
}

.portfolio-overlay h3 {
	color: white;
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
}

.portfolio-overlay p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .slider-track {
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .nav-wrapper nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-wrapper nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;

        background: white;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-wrapper nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .cta-group {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .feature-text,
    .feature-img {
        width: 100%;
    }

	.feature-img {
        width: 100%;
        padding: 0 20px; /* jarak kiri kanan */
        box-sizing: border-box;
    }

    .feature-img img {
        width: 100%;
        max-width: 100%;
    }
	
    .carousel-item {
        width: auto;
    }
	
	.portfolio-item, .portfolio-actions {
        padding: 0 20px;
    }
	
}

@media (max-width: 768px) {
    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .feature-text,
    .feature-img {
        width: 100%;
    }

	.feature-img {
        width: 100%;
        padding: 0 20px; /* jarak kiri kanan */
        box-sizing: border-box;
    }

    .feature-img img {
        width: 100%;
        max-width: 100%;
    }
	
	.portfolio-item, .portfolio-actions {
        padding: 0 20px;
    }
}

/* Container untuk tombol portfolio */
.portfolio-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* Style dasar untuk kedua tombol */
.btn-portfolio {
    flex: 1; /* Membuat lebar tombol sama rata (50%-50%) */
    padding: 10px 0;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block; /* Agar bisa di-klik sepenuhnya */
}

/* Tombol Kiri: View Screenshot */
.btn-screenshot {
    background-color: #f3f4f6; /* Abu-abu muda */
    color: var(--text-dark);
    border: 1px solid #e5e7eb;
}

.btn-screenshot:hover {
    background-color: #e5e7eb;
    color: var(--primary-blue);
}

/* Tombol Kanan: View Link */
.btn-link {
    background-color: var(--primary-blue);
    color: white;
    border: 1px solid var(--primary-blue);
}

.btn-link:hover {
    background-color: #0a4194;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(15, 82, 186, 0.2);
}

/* ================= FLOATING WHATSAPP ================= */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Warna Hijau WA Resmi */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999; /* Pastikan di atas elemen lain (modal, footer) */
    text-decoration: none;
    transition: all 0.3s ease;
    
    /* Animasi Pulse (Berdenyut) */
    animation: pulse-wa 2s infinite;
}

/* Efek saat di-hover mouse */
.floating-wa:hover {
    transform: scale(1.1);
    background-color: #128C7E; /* Warna hijau sedikit lebih gelap */
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* Keyframes untuk animasi pulse */
@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive: Sesuaikan posisi di HP agar tidak menutupi footer */
@media (max-width: 768px) {
    .floating-wa {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}

/* ================= BADGE NOTIFIKASI (LINGKARAN MERAH) ================= */
.wa-badge {
    position: absolute; /* Posisi absolute relatif terhadap tombol utama */
    top: -5px;         /* Geser ke atas 5px */
    right: -5px;       /* Geser ke kanan 5px */

    width: 22px;
    height: 22px;

    background-color: #ff0000; /* Warna Merah */
    color: #ffffff;            /* Teks Putih */

    border-radius: 50%;        /* Membuat bentuk lingkaran */
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 12px;
    font-weight: bold;
    line-height: 1;

    /* Border hijau agar menyatu rapi dengan tombol WhatsApp di bawahnya */
    border: 2px solid #25D366; 
    
    /* Animasi Bounce (Melompat kecil) */
    animation: bounce-badge 1.5s infinite ease-in-out;
    z-index: 10;
}

/* Keyframes animasi bounce */
@keyframes bounce-badge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px); /* Naik sedikit saat tengah animasi */
    }
}

/* ================= PRICING ================= */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch; /* Agar tinggi card sama */
}

.pricing-card {
    position: relative;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.popular {
    border: 2px solid var(--primary-blue);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(15, 82, 186, 0.15);
    z-index: 10;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    
    background: var(--primary-blue);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    background: var(--primary-light);
    color: var(--primary-blue);
    border-radius: 50%;
    font-size: 1.8rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.pricing-header p {
    font-size: 0.9rem;
    color: var(--text-grey);
}

.pricing-price {
    margin: 25px 0;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.pricing-price .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.pricing-price .period {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-grey);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1; /* Membuat tombol selalu di bawah */
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.pricing-features li i {
    font-size: 1rem;
    color: var(--accent-green);
}

.pricing-features li.disabled {
    color: #adb5bd;
}

.pricing-features li.disabled i {
    color: #adb5bd;
}

/* Responsive Pricing */
@media (max-width: 900px) {
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 600px) {
    .pricing-section {
        padding: 60px 0;
    }
    .pricing-price .amount {
        font-size: 2.5rem;
    }
}

/* ================= PROSES KERJA (TIMELINE) ================= */
.process-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Garis vertikal tengah timeline */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px; /* Posisi garis di mobile (kiri) */
    height: 100%;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 35px;
    display: flex;
    align-items: flex-start;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Lingkaran Penanda (Marker) */
.timeline-marker {
    position: relative;
    width: 60px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    padding-top: 20px;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 0 0 4px var(--bg-light); /* Memberi jarak dari garis */
}

/* Konten Deskripsi */
.timeline-content {
    background: white;
    padding: 20px 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    flex: 1;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-blue);
}

.timeline-content h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 1.15rem;
    color: var(--text-dark);
}

.timeline-content h3 i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-grey);
    line-height: 1.6;
    margin: 0;
}

/* Animasi Muncul (Reveal) */
/*
.timeline-item.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}
*/
.timeline-item.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Timeline untuk Desktop (Garisan pindah ke tengah) */
@media (min-width: 768px) {
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item {
        width: 50%;
    }

    /* Item Ganjil (Kiri) */
    .timeline-item:nth-child(odd) {
        padding-right: 40px;
        align-self: flex-end; /* Dorong ke bawah dalam flex container */
        margin-left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-marker {
        position: absolute;
        right: -20px; /* Pindahkan marker ke garis tengah */
        padding-top: 20px;
    }

    /* Item Genap (Kanan) */
    .timeline-item:nth-child(even) {
        padding-left: 40px;
        margin-left: 50%;
    }

    .timeline-item:nth-child(even) .timeline-marker {
        position: absolute;
        left: -20px; /* Pindahkan marker ke garis tengah */
        padding-top: 20px;
    }
}

@media (max-width: 600px) {
    .process-section {
        padding: 60px 0;
    }
    .timeline-content {
        padding: 15px 20px;
    }
}



/* ================= KONSULTASI BUTTON STYLE ================= */
.card-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    box-sizing: border-box;
    
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    background-color: var(--primary-blue);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    
    transition: all 0.3s;
}

.card-link:hover {
    background-color: #0a4194;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 82, 186, 0.3);
}

/* Tambahan styling untuk Select dan Textarea di Modal */
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical; /* Agar textarea hanya bisa di-resize ke bawah */
}