/* ================= contac ================= */
.contact-card {
    margin: auto;
    margin-top: 80px;
            display: flex;
            max-width: 900px;
            width: 100%;
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            min-height: 450px;
        }

        /* BAGIAN KIRI - FORM */
        .form-section {
            flex: 1.4;
            padding: 35px;
        }

        .form-section h2 {
            font-size: 26px;
            margin-bottom: 25px;
            color: #2c3136;
        }

        /* Baris Input Sejajar */
        .input-row {
            display: flex;
            gap: 15px;
        }

        .input-group {
            flex: 1;
            margin-bottom: 15px;
        }

        .input-group label {
            display: block;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 6px;
            color: #666;
            text-transform: uppercase;
        }

        .input-group input, .input-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
            background: #fdfdfd;
            outline: none;
            transition: 0.3s;
        }

        .input-group input:focus, .input-group textarea:focus {
            border-color: #0d3b2e;
            background: #fff;
        }

        .btn-send {
            background: #2c3136;
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            margin-top: 10px;
            transition: 0.3s;
        }

        .btn-send:hover {
            background: #1a1d20;
        }

        /* BAGIAN KANAN - INFO */
        .info-section {
            flex: 1;
            background: #0d3b2e;
            padding: 35px;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .info-header h3 {
            font-size: 22px;
            margin-bottom: 20px;
        }

        .contact-item {
            display: flex;
            gap: 12px;
            margin-top: 15px;
            font-size: 13.5px;
            color: #ddd;
            line-height: 1.4;
        }

        .img-preview {
            width: 100%;
            height: 250px;
            background: url('https://images.unsplash.com/photo-1537996194471-e657df975ab4?auto=format&fit=crop&w=500&q=80');
            background-size: cover;
            background-position: center;
            border-radius: 12px;
            margin: 15px 0;
        }

        .socials {
            display: flex;
            gap: 12px;
        }

        .s-icon {
            width: 32px;
            height: 32px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            cursor: pointer;
            transition: 0.3s;
        }

        .s-icon:hover {
            background: #fff;
            color: #0d3b2e;
        }

@media (max-width: 750px) {
.contact-card {
    flex-direction: column;
    border-radius: 0;
    }
    
.input-row {
    flex-direction: column;
    gap: 0;
    }
    .img-preview {
            height: 150px;
    }
}