/* =========================================
   CONTACT PAGE STYLE
   ========================================= */

/* 1. CONTACT INFO BOX */
.contact-box {
    padding: 15px;
    border-radius: 15px;
    transition: 0.3s;
}

.contact-box:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
/* Menggunakan class bg-blue-soft dll dari file css sebelumnya */


/* 2. FORM WRAPPPER (GLASSMORPHISM) */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* 3. DARK INPUT FIELDS */
.form-control-dark {
    background-color: #0b162c; /* Warna dalam input */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
}

.form-control-dark:focus {
    background-color: #080f1f;
    border-color: #0061f2; /* Border jadi biru saat diketik */
    color: white;
    box-shadow: 0 0 15px rgba(0, 97, 242, 0.2);
}

/* Placeholder color */
.form-control-dark::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Dropdown arrow fix for dark mode */
.form-select.form-control-dark {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

/* 4. SOCIAL BUTTONS */
.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.social-btn:hover {
    background: #0061f2;
    border-color: #0061f2;
    color: white;
    transform: translateY(-5px);
}

/* 5. DARK MAP HACK */
/* Filter ini membalik warna peta google (putih jadi hitam) agar cocok dengan tema website */
.map-section iframe {
    display: block;
    /* Invert 90% membalik warna, Hue-rotate memutar warna agar laut tetap biru (bukan oranye) */
    filter: invert(90%) hue-rotate(180deg) grayscale(20%);
}
